Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sync-child-process

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sync-child-process

Run a subprocess synchronously and interactively in Node.js

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
294K
decreased by-12.89%
Maintainers
1
Weekly downloads
 
Created
Source

sync-child-process

This package exposes a SyncChildProcess class that allows Node.js to run a subprocess synchronously and interactively.

API Docs

Usage

Use new SyncChildProcess() to start running a subprocess. This supports the same API as child_process.spawn() other than a few options. You can send input to the process using process.stdin, and receive events from it (stdout, stderr, or exit) using process.next(). This implements the iterator protocol, but not the iterable protocol because it's intrinsically stateful.

import {SyncChildProcess} from 'sync-child-process';
// or
// const {SyncChildProcess} = require('sync-child-process');

const node = new SyncChildProcess('node', ['--interactive']);

for (;;) {
  if (node.next().value.data.toString().endsWith('> ')) break;
}

node.stdin.write("41 * Math.pow(2, 5)\n");
console.log((node.next().value.data.toString().split("\n")[0]));
node.stdin.write(".exit\n");
console.log(`Node exited with exit code ${node.next().value.code}`);

Why synchrony?

See the sync-message-port documentation for an explanation of why running code synchronously can be valuable even in an asynchronous ecosystem like Node.js

Why not child_process.spawnSync()?

Although Node's built-in child_process.spawnSync() function does run synchronously, it's not interactive. It only returns once the process has run to completion and exited, which means it's not suitable for any long-lived subprocess that interleaves sending and receiving data, such as when using the embedded Sass protocol.


Disclaimer: this is not an official Google product.

FAQs

Package last updated on 04 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc